home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue26 / tiptrix / NoteMenu / unit3.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-20  |  544 b   |  35 lines

  1. unit Unit3;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm3 = class(TForm)
  11.     Label1: TLabel;
  12.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form3: TForm3;
  21.  
  22. implementation
  23.  
  24. uses Main;
  25.  
  26. {$R *.DFM}
  27.  
  28.  
  29. procedure TForm3.FormClose(Sender: TObject; var Action: TCloseAction);
  30. begin
  31.   Form1.MainMenu1.Merge(Form1.CurMenu);
  32. end;
  33.  
  34. end.
  35.